279. Araxis Merge File Comparison Report

Produced by Araxis Merge on 2021-05-13 09:09:05 +0000. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

279.1 Files compared

#LocationFileLast Modified
12021-05-13 09:09:05 +0000
2/Applications/Ampps/www/Porto v4.0.0/Theme Files/Magento 2.x/Porto Theme/app/design/frontend/Smartwave/porto/MSP_ReCaptcha/templatesmsp_recaptcha_newsletter.phtml2020-03-13 09:27:30 +0000

279.2 Comparison summary

DescriptionBetween
Files 1 and 2
Text BlocksLines
Unchanged00
Changed00
Inserted144
Removed00

279.3 Comparison options

WhitespaceConsecutive whitespace is treated as a single space
Character caseDifferences in character case are significant
Line endingsDifferences in line endings (CR and LF characters) are ignored
CR/LF charactersNot shown in the comparison detail
Active line-pairing rules

279.4 Active regular expressions

No regular expressions were active.

279.5 Comparison detail

    1 <?php
    2 /**
    3  * MageSpecialist
    4  *
    5  * NOTICE OF LICENSE
    6  *
    7  * This source file is subject to the Open Software License (OSL 3.0)
    8  * that is bundled with this package in the file LICENSE.txt.
    9  * It is also available through the world-wide-web at this URL:
    10  * http://opensource.org/licenses/osl-3.0.php
    11  * If you did not receive a copy of the license and are unable to
    12  * obtain it through the world-wide-web, please send an email
    13  * to info@magespecialist.it so we can send you a copy immediately.
    14  *
    15  * @category   MSP
    16  * @package    MSP_ReCaptcha
    17  * @copyright  Copyright (c) 2017 Skeeller srl (http://www.magespecialist.it)
    18  * @license    http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
    19  */
    20 
    21 /** @var $block MSP\ReCaptcha\Block\Frontend\ReCaptcha */
    22 ?>
    23 <div
    24     class="field-recaptcha"
    25     id="<?= /* @noEscape */ $block->getRecaptchaId() ?>-container"
    26     data-bind="scope:'<?= /* @noEscape */ $block->getRecaptchaId() ?>'"
    27 >
    28     <!-- ko template: getTemplate() --><!-- /ko -->
    29 </div>
    30 
    31 <script type="text/javascript">
    32     require(['jquery', 'domReady!'], function ($) {
    33         $('#<?= /* @noEscape */ $block->getRecaptchaId() ?>-container')
    34             .appendTo('#newsletter-validate-detail');
    35     });
    36 </script>
    37 
    38 <script type="text/x-magento-init">
    39 {
    40     "#<?= /* @noEscape */ $block->getRecaptchaId() ?>-container": {
    41         "Magento_Ui/js/core/app": <?= /* @noEscape */ $block->getJsLayout() ?>
    42     }
    43 }
    44 </script>